home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Python1.4_Source / Modules / protos / timemodule_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  798 b   |  16 lines

  1.  
  2. /* timemodule.c */
  3. static object *time_time ( object *self , object *args );
  4. static object *time_clock ( object *self , object *args );
  5. static object *time_sleep ( object *self , object *args );
  6. static object *time_convert ( time_t when , struct tm *(*function )PROTO ((const time_t *)));
  7. static object *time_gmtime ( object *self , object *args );
  8. static object *time_localtime ( object *self , object *args );
  9. static int gettmarg ( object *args , struct tm *p );
  10. static object *time_strftime ( object *self , object *args );
  11. static object *time_asctime ( object *self , object *args );
  12. static object *time_ctime ( object *self , object *args );
  13. static object *time_mktime ( object *self , object *args );
  14. static void ins ( object *d , char *name , object *v );
  15. static double floattime ( void );
  16.